home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 7 / Amiga Format AFCD07 (Dec 1996, Issue 91).iso / serious / shareware / programming / aros / graphics / textlength.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-12  |  1.1 KB  |  56 lines

  1. /*
  2.     (C) 1995 AROS - The Amiga Replacement OS
  3.     $Id: textlength.c,v 1.1 1996/08/16 14:00:04 digulla Exp $    $Log
  4.     Desc:
  5.     Lang: english
  6. */
  7. #include "graphics_intern.h"
  8.  
  9. WORD driver_TextLength (struct RastPort *, STRPTR, ULONG);
  10.  
  11. /*****************************************************************************
  12.  
  13.     NAME */
  14.     #include <graphics/rastport.h>
  15.     #include <clib/graphics_protos.h>
  16.  
  17.     __AROS_LH3(WORD, TextLength,
  18.  
  19. /*  SYNOPSIS */
  20.     __AROS_LHA(struct RastPort *, rp, A1),
  21.     __AROS_LHA(STRPTR           , string, A0),
  22.     __AROS_LHA(unsigned long    , count, D0),
  23.  
  24. /*  LOCATION */
  25.     struct GfxBase *, GfxBase, 9, Graphics)
  26.  
  27. /*  FUNCTION
  28.  
  29.     INPUTS
  30.  
  31.     RESULT
  32.  
  33.     NOTES
  34.  
  35.     EXAMPLE
  36.  
  37.     BUGS
  38.  
  39.     SEE ALSO
  40.  
  41.     INTERNALS
  42.  
  43.     HISTORY
  44.     29-10-95    digulla automatically created from
  45.                 graphics_lib.fd and clib/graphics_protos.h
  46.  
  47. *****************************************************************************/
  48. {
  49.     __AROS_FUNC_INIT
  50.     __AROS_BASE_EXT_DECL(struct GfxBase *,GfxBase)
  51.  
  52.     return driver_TextLength (rp, string, count);
  53.  
  54.     __AROS_FUNC_EXIT
  55. } /* TextLength */
  56.